home *** CD-ROM | disk | FTP | other *** search
/ Leonardo the Inventor / Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso / LEOWINMV / SHARED.DIR / 03086_Script_TRANSITIONS LEO I < prev    next >
Text File  |  1996-04-01  |  1KB  |  56 lines

  1. -- -----------------------------------------------------------
  2. -- Handler dissolve performs a dissolve transition on the MAC
  3. -- only.
  4.  
  5. on dissolve dissolveTime
  6.   if (the machineType = 256) then
  7.     -- PC
  8.     nothing
  9.   else 
  10.     puppetTransition 51, dissolveTime
  11.   end if
  12. end
  13.  
  14. -- -----------------------------------------------------------
  15. -- Handler dissolveTo3Dpic performs a transition for 3D.
  16.  
  17. on dissolveto3Dpic pcduration, macduration 
  18.   --pc transition is wipe down ,chunk size 4, mac transition is pixle dissolve
  19.   if (the machineType = 256) then 
  20.     puppetTransition 3, pcduration, 4
  21.   else 
  22.     puppetTransition 51, macduration
  23.   end if
  24. end
  25.  
  26. -- -----------------------------------------------------------
  27. -- Handler transitionToWords performs a transition when going
  28. -- to a words section.
  29.  
  30. on transitionToWords
  31.   if (the machineType = 256) then
  32.     puppetTransition 9, 2, 4
  33.   else
  34.     puppetTransition 51, 2, 4
  35.   end if
  36. end
  37.  
  38. -- -----------------------------------------------------------
  39. -- Handler transitionToTime performs a transition when going
  40. -- to a time section.
  41.  
  42. on transitionToTime
  43.   puppetTransition 9, 2, 4
  44. end
  45.  
  46. -- -----------------------------------------------------------
  47. -- Handler transitionToGame performs a transition when going
  48. -- to a game section.
  49.  
  50. on transitionToGame
  51.   if (the machineType = 256) then
  52.     puppetTransition 9, 2, 4
  53.   else
  54.     puppetTransition 51, 2, 4
  55.   end if
  56. end